overloaded functions造句
例句與造句
- This enables the user to differentiate between overloaded functions
這使用戶能夠區(qū)分重載函數(shù)。 - A common example of ambiguous input is an overloaded function name
常見的二義性輸入是重載的函數(shù)名。 - The debugger supports the evaluation of functions , including overloaded functions
調(diào)試器支持函數(shù)的計算,包括重載函數(shù)的計算。 - For overloaded functions , you can specify the arguments to set the breakpoint correctly
對于重載的函數(shù),可以指定參數(shù)以正確地設(shè)置斷點。 - When you set a breakpoint on an overloaded function , the location of the breakpoint depends on how you specify the function
在對重載函數(shù)設(shè)置斷點時,斷點的位置取決于指定函數(shù)的方式。 - It's difficult to find overloaded functions in a sentence. 用overloaded functions造句挺難的
- This information can be used to discover the signature of the function which allows you to differentiate between overloaded functions
該信息可用于發(fā)現(xiàn)函數(shù)的簽名,該簽名使您能夠區(qū)分重載函數(shù)。 - For overloaded functions , you can use the up and down arrow keys to view alternative parameter information for the function overloads
對于重載函數(shù),可以使用向上和向下鍵查看函數(shù)重載的其他參數(shù)信息。 - Therefore , you can enter either of the following expressions , and the debugger will call the correct version of the overloaded function
因此,您可以輸入以下表達(dá)式之一,并且調(diào)試器將調(diào)用重載函數(shù)的正確版本: - It should usually be the same as the function name , but you can use this if you need to have overloaded functions that have the same name and different parameters
這一項通常應(yīng)該與函數(shù)名一致,但是如果您需要擁有具有相同名單但帶有不同參數(shù)的“過載的( overloaded ) ”函數(shù),那么您可以使用這個名稱。 - When an overloaded function is called , the overloaded function whose arguments most closely match the passed arguments is called , depending on the actual types of arguments passed to the function
調(diào)用重載的函數(shù)時,將調(diào)用其參數(shù)最密切匹配傳遞參數(shù)的重載函數(shù),具體取決于傳遞給函數(shù)的實際參數(shù)類型。 - Ambiguity results in an error , and the user will disambiguate the context through some special syntax as an analogy , think of overload function resolution , with its hierarchy of precedence
多義性會導(dǎo)致錯誤,用戶將通過一些特殊語法消除上下文的歧義(具有優(yōu)先級層次結(jié)構(gòu)的重載函數(shù)解析,與此類似) 。 - In generally , we can say that anytime u redefine an overloading function name from the base class , all of the other versions are automatically hidden in the new class
總結(jié)為:繼承類把基類的重載函數(shù)重定義后,只能調(diào)用繼承類對象的已重定義的函數(shù),而不是調(diào)用基類的那些重載函數(shù)(同名函數(shù)) ,即在繼承類中基類的重載函數(shù)被隱藏!